Changes between BDK 1.0 - April '97 and BDK 1.0 - June '97
Various minor bug fixes.
Provide better diagnostics when BeanBox can't load a bean
Improved BeanBox cursor management on windows.
Added support for beans that are in the default package.
Added support for lightweight components.
Made JellyBean and OurButton into lightweight components.
Added the name of the current bean to the PropertySheet title bar.
Changes between BDK 1.0 - February '97 and BDK 1.0 - April '97
Added the revised JavaBeans tutorial.
Removed all uses of deprecated AWT APIs from the BeanBox and the
sample beans.
Converted the BeanBox and the sample beans to use the new AWT event
model throughout. Also made sure that the BeanBox still works correctly
with beans using the old JDK 1.0 AWT event model.
Improved the management of event connections and bound property
connections inside the BeanBox. Now the BeanBox's Wrapper objects
keep track of the event listeners associated with each bean and handle
the saving and restoring of the event "wiring" during serialization.
This is consistent with the Beans 1.00 spec.
Added startup frame to announce when we are loading and analyzing jars.
Changed the JAR loader to provide better diagnostics when it has
trouble loading a bean from a JAR.
Added scrollbar support to the PropertySheet. If the PropertySheet tries
to exceed its current allowed maximum size, we wrap it in a ScrollPane.
The current maximum size can be changed by stretching the PropertySheet
frame.
Added a new example bean, the BlueBean, that uses Java externalization to
save and restore its persistent state.
Added an item under Edit for serializing out an instantiated Bean.
This may be useful to define new beans by creating serialized
prototypes of them.
A number of scattered minor bug fixes.
Changes between BDK 1.0 beta-3 and BDK 1.0
The BDK 1.0 depends on the final version of JDK 1.1, which includes
the java.beans.* API classes.
Fully integrated JAR support, so various BDK beta-3 problems around
unjarring things and getting conflicting class loaders will go away.
Added support for invisible beans. These are represented via a small
visible box. This can be turned on or off using the "view" menu.
Added an example invisible bean in demo/sunw/demo/misc/TickTock.java
Added support for loading serialized beans into the BeanBox. JAR files
can now name a serialized object as a bean. As part of the buttons.jar
we now create a serialized bean called "OrangeButton".
Added support for turning on and off "design mode" so you can see
how your beans will look at runtime, using the "view" menu.
Added support for beans that are applets. In beans.instantiate if
the new bean is an applet it will get inited and given
a simple AppletStub and AppletContext. However note that it is
the containing application's responsibility to check if a bean
is an applet and call "start" after adding the applet to an
AWT container. The juggler is now an applet as well as a bean.
Added sample code in demo/sunw/wrapper for running beans inside a
wrapping applet.
Sample code in demo/sunw/demo/encapsulatedEvents for writing
a generic event handler that can sink arbitrary kinds of events.
Added a tutorial document on using the BDK.
Improved the installation for Windows 95 and Windows NT.
Various assorted bug fixes, notably around our handling of nested
beanboxes and rebuilding the menubar.
Changes between BDK 1.0 beta-2 and beta-3
The BDK beta-3 depends on JDK 1.1 beta-3.
The java.beans.* API classes are now bundled in JDK 1.1 beta-3.
These .class files are therefore no longer supplied with the BDK. We still
provide reference source for these classes in the BDK.
The syntax of the String argument to Beans.instantiate has changed.
For serialized objects this should now be a dot separated string
such as "a.b.c", which will be converted to a resource name such
as "a/b/c.ser". See the javadoc for more details.
The BeanBox now support JAR files more directly. For example, it reads
bean classes directly from the JAR files, using a special class loader.
The JAR file still needs to be unjar-ed by the build mechanism to
enable adaptor class construction.
The BeanBox now runs customizers as modal dialogs. This avoids
conflicts between property sheet edits and customizer updates.
BeanBox method hookups are now more flexible so you can connect
event deliveries to either methods with the "right" type signature or
to methods that take no arguments.
Changes between BDK 1.0 beta-1 and beta-2
Fixes for several minor bugs, including:
The QuoteMonitor base server dialog would sometimes hang.
The VetoableChangeSupport class didn't revert vetoed events correctly.
The PropertyChangeEvent constructor didn't save the oldValue correctly.
There were problems with IndexedPropertyDescriptor construction.
We've moved the default property editor classes from java.beans.editors
to sun.beans.editors. There had been some confusion over the role of these
classes. They aren't intended to be API classes in their own right, and
beans developers shouldn't use them directly. Instead they only exist to
allow the PropertyEditorManager to provide default property editors for
the most common Java types. Hopefully moving them to sun.beans.editors
will clarify that these classes are merely part of the beans implementation,
that they may be overridden by ISVs, and aren't by themselves public APIs.
Promoted java.beans.editors.PropertyEditorSupport to
java.beans.PropertyEditorSupport, as this class is
intended to be a public API.
Java, JavaBeans, and JavaSoft are trademarks of Sun Microsystems Inc.